home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows News 2005 November
/
WNnov2005.iso
/
Windows
/
Equipement
/
hMailServer
/
hMailServer-4.1-Build-136.exe
/
{app}
/
PHPWebAdmin
/
theme
/
default
/
accounts_edit.tpl
< prev
next >
Wrap
Text File
|
2005-07-17
|
2KB
|
59 lines
<br/>
<h1>{$account->Address}</h1>
<form action="index.php" method="post" onSubmit="return formCheck(this);">
<input type="hidden" name="page" value="accounts_edit">
<input type="hidden" name="function" value="doedit">
<input type="hidden" name="DomainID" value="{$domain->ID}">
<input type="hidden" name="AccountID" value="{$account->ID}">
<table border="0" id="settingstable" width="100%">
<tr>
<td width="25%">{translate}address{/translate}</td>
<td width="75%">
{if $admin_rights}
<input type="text" name="Address" value="{$address}" checkallownull="false" checktype="text"> @{$domain->Name}</td>
{else}
{$account->Address}
{/if}
</tr>
<tr>
<td>{translate}password{/translate}</td>
<td><input type="text" name="Password" value=""></td>
</tr>
<tr>
<td>{translate}mailboxsize{/translate}</td>
<td>
{if $admin_rights}
<input type="text" name="MaxSize" value="{$account->MaxSize}" checkallownull="false" checktype="number">
{else}
{$account->MaxSize}
{/if}
</tr>
<tr>
<td>{translate}current_mailboxsize{/translate}</td>
<td>{$accountsize}</td>
</tr>
<tr>
<td>{translate}active{/translate}</td>
<td>
{if $admin_rights}
<input type="checkbox" style="border: 0px;" name="Active" value="1" {if $account->Active}checked{/if}>
{else}
{if $account->Active}{translate}yes{/translate}{else}No{/if}
{/if}
</td>
</tr>
<tr>
<td colspan="2" class="footerline"> </td>
</tr>
<tr>
<td colspan="2" align="right"><input type="submit" value="{translate}save{/translate}"></td>
</tr>
</table>
</form>